home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / strings.h < prev    next >
C/C++ Source or Header  |  1990-06-27  |  833b  |  47 lines

  1. /*
  2.  * Copyright (c) 1980 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)strings.h    5.3 (Berkeley) 11/18/87
  7.  */
  8.  
  9. #ifndef _STRINGS
  10. #define _STRINGS
  11.  
  12. /*
  13.  * External function definitions
  14.  * for routines described in string(3).
  15.  */
  16. char    *strcat();
  17. char    *strncat();
  18. int    strcmp();
  19. int    strncmp();
  20. int    strcasecmp();
  21. int    strncasecmp();
  22. char    *strcpy();
  23. char    *strncpy();
  24. int    strlen();
  25. char    *index();
  26. char    *rindex();
  27.  
  28. /* S5 compatibility */
  29. char    *memccpy();
  30. char    *memchr();
  31. int    memcmp();
  32. char    *memcpy();
  33. char    *memset();
  34. char    *strchr();
  35. char    *strdup();
  36. char    *strrchr();
  37. char    *strpbrk();
  38. char    *strsep();
  39. int    strspn();
  40. int    strcspn();
  41. char    *strtok();
  42.  
  43. /* Routines from ANSI X3J11 */
  44. char    *strerror();
  45.  
  46. #endif /* _STRINGS */
  47.